which indicates which package should be benchmarked. If it is not given, then
the current package is benchmarked. For more information on SPEC and its format,
see the `cargo help pkgid` command.
+
+Compilation can be customized with the `bench` profile in the manifest.
";
pub fn execute(options: Options, shell: &mut MultiShell) -> CliResult<Option<()>> {
which indicates which package should be built. If it is not given, then the
current package is built. For more information on SPEC and its format, see the
`cargo help pkgid` command.
+
+Compilation can be configured via the use of profiles which are configured in
+the manifest. The default profile for this command is `dev`, but passing the
+--release flag will use the `release` profile instead.
";
pub fn execute(options: Options, shell: &mut MultiShell) -> CliResult<Option<()>> {
which indicates which package should be tested. If it is not given, then the
current package is tested. For more information on SPEC and its format, see the
`cargo help pkgid` command.
+
+Compilation can be configured via the `test` profile in the manifest.
";
pub fn execute(options: Options, shell: &mut MultiShell) -> CliResult<Option<()>> {